home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1996 April: Mac OS SDK / Dev.CD Apr 96 SDK / Dev.CD Apr 96 SDK1.toast / Development Kits (Disc 1) / OpenDoc / Sample Code / CALib & You… / Source / CASample / CAS_AppleEvent.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-12-07  |  534 b   |  37 lines  |  [TEXT/MPS ]

  1. /*
  2.  
  3.     File:        CAS_AppleEvent.h
  4.  
  5.     Contains:    Constants and public function prototypes for CAS_AppleEvent.c
  6.  
  7.     Written by:    David H Nelson
  8.  
  9.     Copyright © 1993-1995 ComponentWorks, All rights reserved.
  10.  
  11.     Change History (most recent first):
  12.  
  13.          <1>     11/20/93    DHN        Created.
  14.  
  15. */
  16.  
  17. #if !defined(_H_CAS_AppleEvent)
  18. #define _H_CAS_AppleEvent
  19.  
  20.  
  21. #if defined(__cplusplus)
  22. extern "C"
  23. {
  24. #endif
  25.  
  26.  
  27. void    AE_InitAppleEvents(        void);
  28. void    AE_DisposeAppleEvents(    void);
  29. void    AE_DoAppleEvent(        EventRecord *theEvent);
  30.  
  31. #if defined(__cplusplus)
  32. }
  33. #endif
  34.  
  35.  
  36. #endif
  37.